home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / mmdf / mmdf-IIb.43 / h / cmd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1986-02-01  |  259 b   |  11 lines

  1. /*      structure for holding command table info        */
  2.  
  3. struct cmdstruct
  4. {
  5.     char *cmdname;      /* string reference */
  6.     int  cmdtoken;      /* internal token  */
  7.     int  cmdnargs;      /* minimum argument count */
  8. };
  9.  
  10. typedef struct cmdstruct Cmd;
  11.